home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 8 / The Arsenal Files Collection #8 (Arsenal Computer) (1996).ISO / prg_gen / euphor14.zip / KEYWORDS.E < prev    next >
Text File  |  1996-04-05  |  817b  |  20 lines

  1. -- Euphoria keywords and routines built in to the interpreter, ex.exe
  2.  
  3. global constant keywords = {
  4.     "if", "end", "then", "procedure", "else", "for", "return",
  5.     "do", "elsif", "while", "type", "constant", "to", "and", "or",
  6.     "exit", "function", "global", "by", "not", "include",
  7.     "with", "without"}
  8.  
  9. global constant builtins = {
  10.     "length", "puts", "integer", "sequence", "position", "object",
  11.     "append", "prepend", "print", "printf", 
  12.     "clear_screen", "floor", "getc", "gets", "get_key",
  13.     "rand", "repeat", "atom", "compare", "find", "match",
  14.     "time", "command_line", "open", "close", "trace", "getenv",
  15.     "sqrt", "sin", "cos", "tan", "log", "system", "date", "remainder",
  16.     "power", "machine_func", "machine_proc", "abort", "peek", "poke", 
  17.     "call", "sprintf"}
  18.  
  19.  
  20.